Playing around with median filters and iPython (2015.10.06 DW KT)


In [3]:
import numpy as np
import matplotlib.pyplot as plt

In [4]:
%matplotlib inline

In [5]:
x = np.arange(0, 2*np.pi, np.pi/10)
s = np.sin(x)

In [6]:
plt.plot(x,s)


Out[6]:
[<matplotlib.lines.Line2D at 0xac23470>]